home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 11
/
CU Amiga Magazine's Super CD-ROM 11 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-06].iso
/
s
/
ppsetup.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-02-15
|
622b
|
28 lines
/*
*/
parse arg lib, autoupdate
units = ppm_GetUnits()
if units = 3 then call ppm_SetUnits(1)
call setclip(pps_units, units)
if datatype(lib, n) then
do
priority= 0
offset = -30
if lib = 1 then libname = "rexxsupport.library"
else if lib = 2 then libname = "gdarexxsupport.library"
else return(0)
end
else
libname = lib
if ~show(l, libname) then
if ~(exists("libs:"libname) & addlib(libname, 0, -30)) then
return("««««Please install the »»»»"libname"«««« in your libs: directory before running this Genie.!»»»»")
if datatype(autoupdate, n) then call ppm_AutoUpdate(autoupdate)
return(1)